home *** CD-ROM | disk | FTP | other *** search
- package components
- {
- import flash.display.DisplayObject;
- import flash.system.Capabilities;
- import mx.containers.HBox;
-
- public class OSButtonBarHBox extends HBox
- {
- public function OSButtonBarHBox()
- {
- super();
- }
-
- override public function getChildAt(param1:int) : DisplayObject
- {
- if(Capabilities.os.indexOf("Mac") >= 0)
- {
- return super.getChildAt(numChildren - (param1 + 1));
- }
- return super.getChildAt(param1);
- }
- }
- }
-
-